aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes/[lang=lang]/sections
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/[lang=lang]/sections')
-rw-r--r--src/routes/[lang=lang]/sections/contact.svelte2
-rw-r--r--src/routes/[lang=lang]/sections/description.svelte2
-rw-r--r--src/routes/[lang=lang]/sections/hero.svelte2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/routes/[lang=lang]/sections/contact.svelte b/src/routes/[lang=lang]/sections/contact.svelte
index 2898e83..fc10092 100644
--- a/src/routes/[lang=lang]/sections/contact.svelte
+++ b/src/routes/[lang=lang]/sections/contact.svelte
@@ -25,7 +25,7 @@
<section class="contact relative z-1">
<div class="mx-auto">
<div class="mb-8 lg:mb-12">
- <h3>{$LL.contact.title()}</h3>
+ <h2>{$LL.contact.title()}</h2>
</div>
<div class="grid grid-cols-12 gap-8 lg:gap-12">
diff --git a/src/routes/[lang=lang]/sections/description.svelte b/src/routes/[lang=lang]/sections/description.svelte
index 1fc23ab..952a105 100644
--- a/src/routes/[lang=lang]/sections/description.svelte
+++ b/src/routes/[lang=lang]/sections/description.svelte
@@ -21,7 +21,7 @@
</script>
{#if visible}
- <h3 class="mb-3">{model.title}</h3>
+ <h2 class="mb-3">{model.title}</h2>
{#if model.content}
<PortableText value={model.content} />
{/if}
diff --git a/src/routes/[lang=lang]/sections/hero.svelte b/src/routes/[lang=lang]/sections/hero.svelte
index 8a874dc..a877299 100644
--- a/src/routes/[lang=lang]/sections/hero.svelte
+++ b/src/routes/[lang=lang]/sections/hero.svelte
@@ -21,7 +21,7 @@
</script>
{#if visible}
- <h1>{model.title}</h1>
+ <h1 class="mb-2 font-serif">{model.title}</h1>
{#if model.content}
<PortableText value={model.content} />
{/if}